home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / website_pro.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  85 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10303);
  10.  script_bugtraq_id(932);
  11.  script_version ("$Revision: 1.11 $");
  12.  script_cve_id("CAN-2000-0066");
  13.  
  14.  name["english"] = "WebSite pro reveals the physical file path of web directories";
  15.  name["francais"] = "WebSite pro donne le chemin absolu des fichiers html";
  16.  script_name(english:name["english"], francais:name["francais"]);
  17.  
  18.  desc["english"] = "It was possible to
  19. discover the physical location of a
  20. virtual web directory of this host by 
  21. issuing the command :
  22.  
  23.     GET /HTTP1.0/
  24.     
  25. This can reveal valuable information to an attacker, allowing
  26. them to focus their attack.
  27.  
  28. Solution : Use another web server.
  29.  
  30. Risk factor : Low";
  31.  
  32.  desc["francais"] = "Il s'est avΘrΘ possible
  33. d'obtenir l'emplacement physique du
  34. dossier web virtuel de ce serveur
  35. en entrant la commande :
  36.  
  37.     GET /HTTP1.0/
  38.     
  39. D'habitude, moins les pirates en savent sur
  40. votre systΦme, mieux il se porte, donc vous
  41. devriez corriger ce problΦme.
  42.  
  43. Solution : utilisez un autre serveur web
  44.  
  45. Facteur de risque : Faible";
  46.  
  47.  script_description(english:desc["english"], francais:desc["francais"]);
  48.  
  49.  summary["english"] = "Attempts to find the location of the remote web root";
  50.  summary["francais"] = "Essaye de trouver le chemin d'accΦs α la racine web distante";
  51.  script_summary(english:summary["english"], francais:summary["francais"]);
  52.  
  53.  script_category(ACT_GATHER_INFO);
  54.  
  55.  
  56.  script_copyright(english:"This script is Copyright (C) 2000 Renaud Deraison",
  57.         francais:"Ce script est Copyright (C) 2000 Renaud Deraison");
  58.  family["english"] = "CGI abuses";
  59.  family["francais"] = "Abus de CGI";
  60.  script_family(english:family["english"], francais:family["francais"]);
  61.  script_dependencie("find_service.nes");
  62.  script_require_ports("Services/www", 80);
  63.  exit(0);
  64. }
  65.  
  66. #
  67. # The script code starts here
  68. #
  69.  
  70. include("http_func.inc");
  71. port = get_http_port(default:80);
  72.  
  73. if(get_port_state(port))
  74. {
  75.  soc = open_sock_tcp(port);
  76.  if(soc)
  77.  {
  78.   d = string("GET /HTTP1.0/\r\n\r\n");
  79.   send(socket:soc, data:d);
  80.   r = recv(socket:soc, length:2048);
  81.   if("htdocs\HTTP" >< r)security_warning(port);
  82.   close(soc);
  83.  }
  84. }
  85.